home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / BIOLOGY / GSRC208A.ZIP / METCONAN.H < prev    next >
C/C++ Source or Header  |  1993-01-11  |  936b  |  31 lines

  1. /*
  2.     GEPASI - a simulator of metabolic pathways and other dynamical systems
  3.     Copyright (C) 1989, 1992  Pedro Mendes
  4. */
  5.  
  6. /*************************************/
  7. /*                                   */
  8. /*     metabolic control analysis    */
  9. /*        using Reder's method       */
  10. /*                                   */
  11. /*          MICROSOFT C 6.00         */
  12. /*           QuickC/WIN 1.0          */
  13. /*             ULTRIX cc             */
  14. /*              GNU gcc              */
  15. /*                                   */
  16. /*   (include here compilers that    */
  17. /*   compiled GEPASI successfully)   */
  18. /*                                   */
  19. /*************************************/
  20.  
  21.  
  22. #define MCA_OK 0
  23. #define MCA_NOCC 1
  24.  
  25. extern void    calc_Dxv( void );
  26. extern int    calc_Gamma( void );
  27. extern void    calc_tt( void );
  28. extern void    calc_C( void );
  29. extern int    equilibrium( void );
  30. extern void    scale_coef( void );
  31.